Skip to content

ci: Version Packages - #1170

Merged
AlemTuzlak merged 1 commit into
mainfrom
changeset-release/main
Aug 20, 2026
Merged

ci: Version Packages#1170
AlemTuzlak merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Aug 20, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@tanstack/ai-openai@0.21.0

Minor Changes

  • #977 11c988b - feat(ai-openai): support PDF document content parts in the Responses adapter.

    openaiText's Responses adapter now accepts PDF document content parts, for any model whose model-meta entry declares the document input modality. Base64 data sources are sent as input_file with a file_data data URL and a filename (from metadata.filename, defaulting to document.pdf). URL sources are sent as input_file with file_url.

    const adapter = openaiText('gpt-5.5')
    
    const message = {
      role: 'user',
      content: [
        { type: 'text', content: 'Summarize this document' },
        {
          type: 'document',
          source: { type: 'data', value: pdfBase64, mimeType: 'application/pdf' },
          metadata: { filename: 'report.pdf' },
        },
      ],
    }

    Non-PDF MIME types are rejected before the request is sent — including pre-wrapped data: URLs whose media type disagrees with mimeType — so callers get an actionable message instead of an opaque provider 400. Inline base64 payloads are also checked for the %PDF magic bytes, so non-PDF data mislabeled (or sent without) a PDF mimeType is rejected locally. OpenAIDocumentMetadata gains filename and detail. The Chat Completions adapter throws a document-specific error pointing here, since documents are Responses-only.

Patch Changes

  • Updated dependencies [11c988b, 47699ed]:
    • @tanstack/openai-base@0.10.0
    • @tanstack/ai@0.47.1

@tanstack/ai-persistence@0.4.0

Minor Changes

  • #1108 9b5f841 - Add complete thread artifact history for portable sandbox snapshots.

Patch Changes

  • #1126 47699ed - Persist completed structured outputs as structured-output message parts and restore them during chat hydration.

  • Updated dependencies [47699ed]:

    • @tanstack/ai@0.47.1

@tanstack/ai-sandbox@0.4.0

Minor Changes

  • #1108 9b5f841 - Add portable sandbox checkpoints. createSandboxSnapshots and memorySandboxSnapshots return one object with save, fork, and readArtifact. createSnapshotTools turns those methods into host tools bound to the route threadId.

Patch Changes

  • Updated dependencies [47699ed, 9b5f841]:
    • @tanstack/ai@0.47.1
    • @tanstack/ai-persistence@0.4.0

@tanstack/openai-base@0.10.0

Minor Changes

  • #977 11c988b - feat(ai-openai): support PDF document content parts in the Responses adapter.

    openaiText's Responses adapter now accepts PDF document content parts, for any model whose model-meta entry declares the document input modality. Base64 data sources are sent as input_file with a file_data data URL and a filename (from metadata.filename, defaulting to document.pdf). URL sources are sent as input_file with file_url.

    const adapter = openaiText('gpt-5.5')
    
    const message = {
      role: 'user',
      content: [
        { type: 'text', content: 'Summarize this document' },
        {
          type: 'document',
          source: { type: 'data', value: pdfBase64, mimeType: 'application/pdf' },
          metadata: { filename: 'report.pdf' },
        },
      ],
    }

    Non-PDF MIME types are rejected before the request is sent — including pre-wrapped data: URLs whose media type disagrees with mimeType — so callers get an actionable message instead of an opaque provider 400. Inline base64 payloads are also checked for the %PDF magic bytes, so non-PDF data mislabeled (or sent without) a PDF mimeType is rejected locally. OpenAIDocumentMetadata gains filename and detail. The Chat Completions adapter throws a document-specific error pointing here, since documents are Responses-only.

Patch Changes

  • Updated dependencies [47699ed]:
    • @tanstack/ai@0.47.1

@tanstack/ai@0.47.1

Patch Changes

  • #1126 47699ed - Persist completed structured outputs as structured-output message parts and restore them during chat hydration.

@tanstack/ai-acp@0.3.3

Patch Changes

  • Updated dependencies [9b5f841, 47699ed]:
    • @tanstack/ai-sandbox@0.4.0
    • @tanstack/ai@0.47.1

@tanstack/ai-angular@0.6.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • Updated dependencies [bd221d9, 8bd6f70, 47699ed]:

    • @tanstack/ai-client@0.25.1
    • @tanstack/ai@0.47.1

@tanstack/ai-anthropic@0.16.9

Patch Changes

  • #1080 3bb55f3 - Fix modelOptions.context_management by attaching the required
    context-management-2025-06-27 beta. The option was typed and forwarded on the
    request body, but Anthropic rejects context editing without the beta header —
    so the feature typechecked and could not work (issue #1074).
  • Updated dependencies [47699ed]:
    • @tanstack/ai@0.47.1

@tanstack/ai-bedrock@0.2.5

Patch Changes

  • Updated dependencies [11c988b, 47699ed]:
    • @tanstack/openai-base@0.10.0
    • @tanstack/ai@0.47.1

@tanstack/ai-byteplus@0.2.2

Patch Changes

  • Updated dependencies [11c988b, 47699ed]:
    • @tanstack/openai-base@0.10.0
    • @tanstack/ai@0.47.1

@tanstack/ai-claude-code@0.4.3

Patch Changes

  • Updated dependencies [9b5f841, 47699ed]:
    • @tanstack/ai-sandbox@0.4.0
    • @tanstack/ai@0.47.1

@tanstack/ai-client@0.25.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • #1169 8bd6f70 - Drain queued post-stream actions after a joinRun replay so a client-tool result from a rejoin is sent back to the server.

  • Updated dependencies [47699ed]:

    • @tanstack/ai@0.47.1

@tanstack/ai-codex@0.4.3

Patch Changes

  • Updated dependencies [9b5f841, 47699ed]:
    • @tanstack/ai-sandbox@0.4.0
    • @tanstack/ai@0.47.1

@tanstack/ai-grok@0.16.2

Patch Changes

  • Updated dependencies [11c988b, 47699ed]:
    • @tanstack/openai-base@0.10.0
    • @tanstack/ai@0.47.1

@tanstack/ai-grok-build@0.4.3

Patch Changes

  • Updated dependencies [9b5f841, 47699ed]:
    • @tanstack/ai-sandbox@0.4.0
    • @tanstack/ai@0.47.1
    • @tanstack/ai-acp@0.3.3

@tanstack/ai-groq@0.6.5

Patch Changes

  • Updated dependencies [11c988b, 47699ed]:
    • @tanstack/openai-base@0.10.0
    • @tanstack/ai@0.47.1

@tanstack/ai-opencode@0.3.3

Patch Changes

  • Updated dependencies [9b5f841, 47699ed]:
    • @tanstack/ai-sandbox@0.4.0
    • @tanstack/ai@0.47.1

@tanstack/ai-preact@0.13.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • Updated dependencies [bd221d9, 8bd6f70, 47699ed]:

    • @tanstack/ai-client@0.25.1
    • @tanstack/ai@0.47.1

@tanstack/ai-react@0.21.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • Updated dependencies [bd221d9, 8bd6f70, 47699ed]:

    • @tanstack/ai-client@0.25.1
    • @tanstack/ai@0.47.1

@tanstack/ai-sandbox-cloudflare@0.3.5

Patch Changes

  • #1108 9b5f841 - Support filesystem metadata needed by portable sandbox snapshots.

  • #1108 9b5f841 - Write files in 32KB base64 chunks so snapshot restore no longer hits Linux MAX_ARG_STRLEN.

  • Updated dependencies [9b5f841, 9b5f841, 47699ed]:

    • @tanstack/ai-sandbox-local-process@0.2.3
    • @tanstack/ai-sandbox@0.4.0
    • @tanstack/ai@0.47.1

@tanstack/ai-sandbox-daytona@0.3.1

Patch Changes

  • #1108 9b5f841 - Support filesystem metadata needed by portable sandbox snapshots.

  • Updated dependencies [9b5f841]:

    • @tanstack/ai-sandbox@0.4.0

@tanstack/ai-sandbox-docker@0.3.1

Patch Changes

  • #1108 9b5f841 - Write files in 32KB base64 chunks so snapshot restore no longer hits Linux MAX_ARG_STRLEN.

  • #1108 9b5f841 - Support filesystem metadata needed by portable sandbox snapshots.

  • Updated dependencies [9b5f841]:

    • @tanstack/ai-sandbox@0.4.0

@tanstack/ai-sandbox-local-process@0.2.3

Patch Changes

  • #1108 9b5f841 - Support filesystem metadata needed by portable sandbox snapshots.

  • Updated dependencies [9b5f841]:

    • @tanstack/ai-sandbox@0.4.0

@tanstack/ai-sandbox-sprites@0.2.3

Patch Changes

  • #1108 9b5f841 - Support filesystem metadata needed by portable sandbox snapshots.

  • Updated dependencies [9b5f841]:

    • @tanstack/ai-sandbox@0.4.0

@tanstack/ai-sandbox-vercel@0.2.3

Patch Changes

  • #1108 9b5f841 - Write files in 32KB base64 chunks so snapshot restore no longer hits Linux MAX_ARG_STRLEN.

  • #1108 9b5f841 - Support filesystem metadata needed by portable sandbox snapshots.

  • Updated dependencies [9b5f841]:

    • @tanstack/ai-sandbox@0.4.0

@tanstack/ai-solid@0.18.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • Updated dependencies [bd221d9, 8bd6f70, 47699ed]:

    • @tanstack/ai-client@0.25.1
    • @tanstack/ai@0.47.1

@tanstack/ai-svelte@0.18.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • Updated dependencies [bd221d9, 8bd6f70, 47699ed]:

    • @tanstack/ai-client@0.25.1
    • @tanstack/ai@0.47.1

@tanstack/ai-vercel-gateway@0.1.5

Patch Changes

  • Updated dependencies [11c988b, 47699ed]:
    • @tanstack/openai-base@0.10.0
    • @tanstack/ai@0.47.1

@tanstack/ai-vue@0.18.1

Patch Changes

  • #1121 bd221d9 - onInterruptStateChange now identifies snapshot restoration (hydrate) separately from streamed or client-initiated interrupt updates (live). The source follows each state publication, so cancelling a restored batch from the callback produces subsequent live updates without re-entering hydration. Client-tool interrupts remain hidden from the public list in both cases; hydrate lets an app cancel a restored batch without cancelling one that is still running.

  • Updated dependencies [bd221d9, 8bd6f70, 47699ed]:

    • @tanstack/ai-client@0.25.1
    • @tanstack/ai@0.47.1

ag-ui@0.0.9

Patch Changes

  • Updated dependencies [bd221d9, 8bd6f70]:
    • @tanstack/ai-client@0.25.1
    • @tanstack/ai-react@0.21.1
    • @tanstack/ai-react-ui@0.8.18

@nx-cloud

nx-cloud Bot commented Aug 20, 2026

Copy link
Copy Markdown

View your CI Pipeline Execution ↗ for commit fb9ebc6

Command Status Duration Result
nx run-many --targets=build --exclude=examples/... ✅ Succeeded 4s View ↗

☁️ Nx Cloud last updated this comment at 2026-08-20 16:30:34 UTC

@pkg-pr-new

pkg-pr-new Bot commented Aug 20, 2026

Copy link
Copy Markdown

Open in StackBlitz

@tanstack/ai

npm i https://pkg.pr.new/@tanstack/ai@1170

@tanstack/ai-acp

npm i https://pkg.pr.new/@tanstack/ai-acp@1170

@tanstack/ai-angular

npm i https://pkg.pr.new/@tanstack/ai-angular@1170

@tanstack/ai-anthropic

npm i https://pkg.pr.new/@tanstack/ai-anthropic@1170

@tanstack/ai-bedrock

npm i https://pkg.pr.new/@tanstack/ai-bedrock@1170

@tanstack/ai-byteplus

npm i https://pkg.pr.new/@tanstack/ai-byteplus@1170

@tanstack/ai-claude-code

npm i https://pkg.pr.new/@tanstack/ai-claude-code@1170

@tanstack/ai-client

npm i https://pkg.pr.new/@tanstack/ai-client@1170

@tanstack/ai-code-mode

npm i https://pkg.pr.new/@tanstack/ai-code-mode@1170

@tanstack/ai-code-mode-snippets

npm i https://pkg.pr.new/@tanstack/ai-code-mode-snippets@1170

@tanstack/ai-codex

npm i https://pkg.pr.new/@tanstack/ai-codex@1170

@tanstack/ai-cohere

npm i https://pkg.pr.new/@tanstack/ai-cohere@1170

@tanstack/ai-devtools-core

npm i https://pkg.pr.new/@tanstack/ai-devtools-core@1170

@tanstack/ai-durable-stream

npm i https://pkg.pr.new/@tanstack/ai-durable-stream@1170

@tanstack/ai-elevenlabs

npm i https://pkg.pr.new/@tanstack/ai-elevenlabs@1170

@tanstack/ai-event-client

npm i https://pkg.pr.new/@tanstack/ai-event-client@1170

@tanstack/ai-fal

npm i https://pkg.pr.new/@tanstack/ai-fal@1170

@tanstack/ai-gemini

npm i https://pkg.pr.new/@tanstack/ai-gemini@1170

@tanstack/ai-grok

npm i https://pkg.pr.new/@tanstack/ai-grok@1170

@tanstack/ai-grok-build

npm i https://pkg.pr.new/@tanstack/ai-grok-build@1170

@tanstack/ai-groq

npm i https://pkg.pr.new/@tanstack/ai-groq@1170

@tanstack/ai-isolate-cloudflare

npm i https://pkg.pr.new/@tanstack/ai-isolate-cloudflare@1170

@tanstack/ai-isolate-daytona

npm i https://pkg.pr.new/@tanstack/ai-isolate-daytona@1170

@tanstack/ai-isolate-node

npm i https://pkg.pr.new/@tanstack/ai-isolate-node@1170

@tanstack/ai-isolate-quickjs

npm i https://pkg.pr.new/@tanstack/ai-isolate-quickjs@1170

@tanstack/ai-isolate-quickjs-bun

npm i https://pkg.pr.new/@tanstack/ai-isolate-quickjs-bun@1170

@tanstack/ai-mcp

npm i https://pkg.pr.new/@tanstack/ai-mcp@1170

@tanstack/ai-memory

npm i https://pkg.pr.new/@tanstack/ai-memory@1170

@tanstack/ai-mistral

npm i https://pkg.pr.new/@tanstack/ai-mistral@1170

@tanstack/ai-ollama

npm i https://pkg.pr.new/@tanstack/ai-ollama@1170

@tanstack/ai-openai

npm i https://pkg.pr.new/@tanstack/ai-openai@1170

@tanstack/ai-opencode

npm i https://pkg.pr.new/@tanstack/ai-opencode@1170

@tanstack/ai-openrouter

npm i https://pkg.pr.new/@tanstack/ai-openrouter@1170

@tanstack/ai-perplexity

npm i https://pkg.pr.new/@tanstack/ai-perplexity@1170

@tanstack/ai-persistence

npm i https://pkg.pr.new/@tanstack/ai-persistence@1170

@tanstack/ai-preact

npm i https://pkg.pr.new/@tanstack/ai-preact@1170

@tanstack/ai-react

npm i https://pkg.pr.new/@tanstack/ai-react@1170

@tanstack/ai-react-ui

npm i https://pkg.pr.new/@tanstack/ai-react-ui@1170

@tanstack/ai-sandbox

npm i https://pkg.pr.new/@tanstack/ai-sandbox@1170

@tanstack/ai-sandbox-cloudflare

npm i https://pkg.pr.new/@tanstack/ai-sandbox-cloudflare@1170

@tanstack/ai-sandbox-daytona

npm i https://pkg.pr.new/@tanstack/ai-sandbox-daytona@1170

@tanstack/ai-sandbox-docker

npm i https://pkg.pr.new/@tanstack/ai-sandbox-docker@1170

@tanstack/ai-sandbox-local-process

npm i https://pkg.pr.new/@tanstack/ai-sandbox-local-process@1170

@tanstack/ai-sandbox-sprites

npm i https://pkg.pr.new/@tanstack/ai-sandbox-sprites@1170

@tanstack/ai-sandbox-vercel

npm i https://pkg.pr.new/@tanstack/ai-sandbox-vercel@1170

@tanstack/ai-solid

npm i https://pkg.pr.new/@tanstack/ai-solid@1170

@tanstack/ai-solid-ui

npm i https://pkg.pr.new/@tanstack/ai-solid-ui@1170

@tanstack/ai-svelte

npm i https://pkg.pr.new/@tanstack/ai-svelte@1170

@tanstack/ai-utils

npm i https://pkg.pr.new/@tanstack/ai-utils@1170

@tanstack/ai-vercel-gateway

npm i https://pkg.pr.new/@tanstack/ai-vercel-gateway@1170

@tanstack/ai-vue

npm i https://pkg.pr.new/@tanstack/ai-vue@1170

@tanstack/ai-vue-ui

npm i https://pkg.pr.new/@tanstack/ai-vue-ui@1170

@tanstack/openai-base

npm i https://pkg.pr.new/@tanstack/openai-base@1170

@tanstack/preact-ai-devtools

npm i https://pkg.pr.new/@tanstack/preact-ai-devtools@1170

@tanstack/react-ai-devtools

npm i https://pkg.pr.new/@tanstack/react-ai-devtools@1170

@tanstack/solid-ai-devtools

npm i https://pkg.pr.new/@tanstack/solid-ai-devtools@1170

commit: fb1252e

@github-actions
github-actions Bot force-pushed the changeset-release/main branch from fb9ebc6 to fb1252e Compare August 20, 2026 16:21
@AlemTuzlak
AlemTuzlak enabled auto-merge (squash) August 20, 2026 16:28
@AlemTuzlak
AlemTuzlak merged commit 873c93d into main Aug 20, 2026
8 checks passed
@AlemTuzlak
AlemTuzlak deleted the changeset-release/main branch August 20, 2026 16:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant